Named Varargs
If you have a function that takes varargs and you want them in a table, you'd have to do something like this:
pluto
function vfunc(...)local args = { ... }for args as arg doprint(arg)endendvfunc("Hello") --> Hello
But, with named varargs, it can be as simple as this:
pluto
function vfunc(...args)for args as arg doprint(arg)endendvfunc("Hello") --> Hello